home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_quake / zeus10.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1996-08-04  |  593b  |  38 lines

  1. @echo off
  2. cls
  3. echo Installation for ZeusBot Quake Mod version 1.0
  4. echo.
  5.  
  6. if [%1] == [] goto usage
  7. if not [%2] == [] goto usage
  8.  
  9. if exist %1\quake.exe goto gooddir
  10.  
  11. :baddir
  12. echo Quake does not appear to be installed in %1.
  13. echo.
  14. goto usage
  15.  
  16. :gooddir
  17. md %1\zeus10
  18.  
  19. copy progs.dat %1\zeus10
  20. copy zeus10.txt %1\zeus10
  21. copy source.zip %1\zeus10
  22. copy zeusbot.bat %1
  23.  
  24. cd %1
  25.  
  26. goto end
  27.  
  28. :usage
  29. echo Usage:
  30. echo.
  31. echo  INSTALL dir_name [ENTER]
  32. echo.
  33. echo  where dir_name is the directory where Quake is installed.
  34. echo.
  35. echo  e.g.  INSTALL C:\GAMES\QUAKE
  36. echo.
  37. :end
  38.